Disable PowerShell Predictions

PowerShell IntelliSense is turned on by default starting in PowerShell v7.3.0. I find IntelliSense to be very distracting.

To disable IntelliSense / predictions / suggestions, add the following lines to your profile:

# Disable IntelliSense
Set-PSReadLineOption -PredictionSource None

You can also type that at the command line to disable IntelliSense for the current session.

References

Announcing PSReadLine 2.1+ with Predictive IntelliSense | PowerShell Blog
about_Profiles | Microsoft Docs

Created: Thursday, November 10, 2022

Updated: Thursday, November 10, 2022